home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_200
/
273_01
/
leftstr.cc
< prev
next >
Wrap
Text File
|
1987-09-23
|
254b
|
10 lines
left_str(int x, char *str, char *new_str)
/* Please the left x number of character from *str into *new_str */
{
while(x && *str) {
*new_str=*str;
new_str++; str++; x--;
}
*new_str=0x00;
}